package com.om.refactoring;

import java.util.Vector;

public class Customer {
	final static int BUSINESS = 1;
	final static int CONSUMER = BUSINESS + 1;
	final static int INDUSTRIAL = CONSUMER + 1;
	
	int address;
	int kwh;
	int type;
	RateType rate, industrialRate;
	Vector<Site> sites;
}
